home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CATALG2.PAK / MAINFRM.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  114 lines

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #include "stdafx.h"
  15. #include "catalog2.h"
  16.  
  17. #include "MainFrm.h"
  18.  
  19. #ifdef _DEBUG
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CMainFrame
  26.  
  27. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  28.  
  29. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  30.     //{{AFX_MSG_MAP(CMainFrame)
  31.         // NOTE - the ClassWizard will add and remove mapping macros here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code !
  33.     ON_WM_CREATE()
  34.     //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36.  
  37. static UINT indicators[] =
  38. {
  39.     ID_SEPARATOR,           // status line indicator
  40. };
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CMainFrame construction/destruction
  44.  
  45. CMainFrame::CMainFrame()
  46. {
  47.     // TODO: add member initialization code here
  48.     
  49. }
  50.  
  51. CMainFrame::~CMainFrame()
  52. {
  53. }
  54.  
  55. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  56. {
  57.     if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  58.         return -1;
  59.     
  60.     if (!m_wndToolBar.Create(this) ||
  61.         !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  62.     {
  63.         TRACE0("Failed to create toolbar\n");
  64.         return -1;      // fail to create
  65.     }
  66.  
  67.     if (!m_wndStatusBar.Create(this) ||
  68.         !m_wndStatusBar.SetIndicators(indicators,
  69.           sizeof(indicators)/sizeof(UINT)))
  70.     {
  71.         TRACE0("Failed to create status bar\n");
  72.         return -1;      // fail to create
  73.     }
  74.  
  75.     // TODO: Delete these three lines if you don't want the toolbar to
  76.     //  be dockable
  77.     m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  78.     EnableDocking(CBRS_ALIGN_ANY);
  79.     DockControlBar(&m_wndToolBar);
  80.  
  81.     // TODO: Remove this if you don't want tool tips
  82.     m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  83.         CBRS_TOOLTIPS | CBRS_FLYBY);
  84.  
  85.     return 0;
  86. }
  87.  
  88. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  89. {
  90.     // TODO: Modify the Window class or styles here by modifying
  91.     //  the CREATESTRUCT cs
  92.  
  93.     return CFrameWnd::PreCreateWindow(cs);
  94. }
  95.  
  96. /////////////////////////////////////////////////////////////////////////////
  97. // CMainFrame diagnostics
  98.  
  99. #ifdef _DEBUG
  100. void CMainFrame::AssertValid() const
  101. {
  102.     CFrameWnd::AssertValid();
  103. }
  104.  
  105. void CMainFrame::Dump(CDumpContext& dc) const
  106. {
  107.     CFrameWnd::Dump(dc);
  108. }
  109.  
  110. #endif //_DEBUG
  111.  
  112. /////////////////////////////////////////////////////////////////////////////
  113. // CMainFrame message handlers
  114.